/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0f172a, #0b1f3a);
  color: #e2e8f0;
  line-height: 1.7;
}

/* ===== Layout ===== */
main {
  min-height: 100vh;
}


/* ===== Hero Section ===== */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #1e3a8a,
    #2563eb,
    #3b82f6
  );
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  top: -200px;
  right: -200px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== Content Section ===== */
.content {
  max-width: 900px;
  margin: -60px auto 80px;
  padding: 60px;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.content h2 {
  font-size: 1.6rem;
  margin: 40px 0 15px;
  color: #60a5fa;
  position: relative;
}

.content h2::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 20px;
  background: #3b82f6;
  border-radius: 4px;
}

.content p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

/* ===== Optional Modern Button ===== */
.content button {
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .content {
    padding: 35px 25px;
    margin: -40px 20px 60px;
  }
}
